home *** CD-ROM | disk | FTP | other *** search
/ Channel Z 5 / Channel Z - The A1200 Disk Magazine - Issue 5 (1994-05-01)(Channel Z)(AGA)(Disk 1 of 2).adf / T / Command-0-T01
Text File  |  1992-04-14  |  3KB  |  137 lines

  1. echo " *N CDTV-CR Final Test -- DEVELOPMENT COPY -- V0.1, 14-Apr-1992*N"
  2.  
  3. ;----------------
  4. ; Initialization
  5. ;----------------
  6.  
  7. path sys:pa_c add
  8.  
  9. ;-------------------------------------
  10. ; Flash-ROM Test, 
  11. ; verify checksum of correct firmware
  12. ;-------------------------------------
  13.  
  14. echo " *N Verifying ROM Firmware (V0.11)... *N"
  15.  
  16. failat 21
  17. checksum f00000 f20000 7bc8a23b
  18. if warn
  19.    ask "*N Press ENTER or RETURN to Continue"
  20. else
  21.    wait 2
  22. endif
  23.  
  24. ;-------------------------------------
  25. ; AmigaDOS-ROM Test, 
  26. ; verify checksum of correct firmware
  27. ;-------------------------------------
  28.  
  29. echo " *N Verifying AmigaDOS 2.05 Kickstart ROM Firmware... *N"
  30.  
  31. failat 21
  32. checksum f80000 fc0000 b2786c06
  33. if warn
  34.    ask "*N Press ENTER or RETURN to Continue"
  35. else
  36.    wait 2
  37. endif
  38.  
  39. ;----------------------
  40. ; Screen Display Tests
  41. ;----------------------
  42.  
  43. ;skip keychk
  44.  
  45. echo " *N Loading NTSC Color Bars + Grey Scales + HALF-BRITE Display Mode Test...*N"
  46. echo " 6 BIT Plane 640 x 200 x 64 colors"
  47. echo " Press the RETURN or ENTER key to EXIT*N"
  48.  
  49. screentest
  50.  
  51. echo " *N Loading High Resolution + Interlaced Display Mode Test...*N"
  52. echo " 4 BIT Plane 640 x 400 x 16 colors"
  53. echo " Press Spacebar or ESCAPE to EXIT*N"
  54.  
  55. show df0:pics/hires.test
  56.  
  57. echo " *N Loading HOLD AND MODIFY Display Mode Test from Floppy...*N"
  58. echo " 6 BIT Plane 320 x 200 x 4096 colors"
  59. echo " Press Spacebar or ESCAPE to EXIT*N"
  60.  
  61. show df0:pics/balloon
  62.  
  63. lab fromcd
  64. echo " *N Loading HOLD AND MODIFY Display Mode Test from CD-ROM...*N"
  65. echo " 6 BIT Plane 352 x 200 x 4096 colors"
  66. echo " Press Spacebar or ESCAPE to EXIT*N"
  67.  
  68. if exists cd0:bin/show
  69.   CD0:BIN/SHOW  "CD0:SCANNED/LOBSTER.SHOW"
  70. else
  71.   cd0:show "cd0:scanned/lobster.show"
  72. endif
  73.  
  74. ;----------------------
  75. ; Keyboard Matrix Test
  76. ;----------------------
  77.  
  78. lab keychk
  79. skip irchk
  80.  
  81. echo " *N Loading Keyboard Matrix Test...*N"
  82. echo " Press highlighted keys in sequence as shown on the display screen"
  83.  
  84. keytest
  85.  
  86. ;------------------------------------------
  87. ; Front Panel & IR Remote Controller Tests
  88. ;------------------------------------------
  89.  
  90. lab irchk
  91. ;skip cdtest
  92.  
  93. echo " *N Loading IR Remote Controller Test"
  94. echo "*NPress remote controller keys as instructed...*N"
  95.  
  96. ircheck -quick
  97. if warn
  98.     ask  "*N Press ENTER or RETURN to Repeat the IR Test"
  99.     skip irchk back
  100. endif
  101.  
  102. lab fpchk
  103.  
  104. echo " *N Loading Front Panel Test"
  105. echo "*NPress front panel controls as instructed...*N"
  106.  
  107. fpcheck -cdtvcr
  108. if warn
  109.     ask "*N Press ENTER or RETURN to Repeat the Front Panel Test"
  110.     skip fpchk back
  111. endif
  112.  
  113. ;----------
  114. ; CDTVTEST
  115. ;----------
  116.  
  117. lab cdtest
  118. skip atest
  119.  
  120. echo " *N Loading CDTVtest... "
  121.  
  122. cdtvtest <df0:pa_c/production.cdtv
  123.  
  124. ask "*N Press ENTER to Continue"
  125.  
  126. ;--------------------------------------
  127. ; AmigaTest for CDTV with port dongles
  128. ;--------------------------------------
  129.  
  130. lab atest
  131.  
  132. echo " *N Loading Amigatest... "
  133. echo "*n Test requires Serial & Parallel Port Dongles"
  134.  
  135. AMIGATEST 46abcf
  136.  
  137.